home *** CD-ROM | disk | FTP | other *** search
/ QRZ! Ham Radio 3 / QRZ Ham Radio Callsign Database - Volume 3.iso / digests / tcp / 940018.txt < prev    next >
Internet Message Format  |  1994-06-04  |  8KB

  1. Date: Sat, 22 Jan 94 04:30:05 PST
  2. From: Advanced Amateur Radio Networking Group <tcp-group@ucsd.edu>
  3. Errors-To: TCP-Group-Errors@UCSD.Edu
  4. Reply-To: TCP-Group@UCSD.Edu
  5. Precedence: Bulk
  6. Subject: TCP-Group Digest V94 #18
  7. To: tcp-group-digest
  8.  
  9.  
  10. TCP-Group Digest            Sat, 22 Jan 94       Volume 94 : Issue   18
  11.  
  12. Today's Topics:
  13.                JNOS, TNOS, and other DOS'isms (3 msgs)
  14.                          NO TNOS sample files
  15.                      TNOS Missing Function - NOT
  16.  
  17. Send Replies or notes for publication to: <TCP-Group@UCSD.Edu>.
  18. Subscription requests to <TCP-Group-REQUEST@UCSD.Edu>.
  19. Problems you can't solve otherwise to brian@ucsd.edu.
  20.  
  21. Archives of past issues of the TCP-Group Digest are available
  22. (by FTP only) from UCSD.Edu in directory "mailarchives".
  23.  
  24. We trust that readers are intelligent enough to realize that all text
  25. herein consists of personal comments and does not represent the official
  26. policies or positions of any party.  Your mileage may vary.  So there.
  27. ----------------------------------------------------------------------
  28.  
  29. Date: Fri, 21 Jan 1994 08:02:10 -0600 (CST)
  30. From: ssampson@sabea-oc.af.mil (Steve Sampson)
  31. Subject: JNOS, TNOS, and other DOS'isms
  32. To: tcp-group@ucsd.edu
  33.  
  34. >It would be fairly easy to generate a special header file for older Borland
  35. >compilers that would implement some extremely simple text translations, such
  36. >as defining the newer prefaces (like "_dos_") so that they were stripped by
  37. >translating them to empty text strings.
  38.  
  39. I took an easier route.  I got rid of the DOS on top of DOS code!  I don't see
  40. any reason for DIR RENAME and COPY inside NOS (as well as a lot of other fluff)
  41. and I just deleted all that bo-jive.  Which brings me to my political comment
  42. of the month.  One thing I *really* don't like about JNOS and TNOS is their
  43. attempt at loading all these MS-DOS features into the code.  Get rid of that
  44. CRAP and get back on track.  The other thing is the BBS code.  I'd throw away
  45. all that mailbox CRAP, it's obsolete.  Why not expand on the NNTP and make a
  46. nice news feed.  Your local community would probably appreciate the breath of
  47. fresh air from the obsolete BBS interface, addressing, and forwarding methods.
  48.  
  49. By the way I use DesqView and a simple ALT-ALT tap gets me a nice window that
  50. does all that CRAP that is flowing into NOS.  Windows could do the same, but
  51. it needs a lot more memory I suspect.
  52.  
  53. Those were very useful comments though, about the BC limitations and changes
  54. Mike, thanks.
  55. ---
  56. Steve N5OWK@W1AW.#LEFT.#RIGHT.#LEFT.#UP.#DOWN.#AROUND.CT.USA.NA.EARTH.ZF101
  57. "My views are official and represent the governments feeling on the subject"
  58.  
  59. ------------------------------
  60.  
  61. Date: Fri, 21 Jan 1994 10:43:22 -0600
  62. From: miltonm@inetnode.austin.ibm.com (Milton Miller)
  63. Subject: JNOS, TNOS, and other DOS'isms
  64. To: ssampson@sabea-oc.af.mil, tcp-group@ucsd.edu
  65.  
  66. > I took an easier route.  I got rid of the DOS on top of DOS code!  I don't see
  67. > any reason for DIR RENAME and COPY inside NOS (as well as a lot of other fluff)
  68. > and I just deleted all that bo-jive.  Which brings me to my political comment
  69.  
  70. The reason for having those in the code is so you don't have to shell out
  71. (and worry you still have enough core left) when you want to do that
  72. dir, more, delete, or rename).   If you don't need these, the ifdef the
  73. commands out (that's what config.h is for).
  74.  
  75. > ... The other thing is the BBS code.  I'd throw away
  76. > all that mailbox CRAP, it's obsolete.  Why not expand on the NNTP and make a
  77. > nice news feed.  Your local community would probably appreciate the breath of
  78. > fresh air from the obsolete BBS interface, addressing, and forwarding methods.
  79.  
  80. Those of us on the local frequency would probably agree.  Why don't you
  81. write a version for us that has a decent nntp and full smtp support 
  82. (for those of us who don't have >1M of memory and can't multitask :).
  83. Don't forget to include a sysop shell for remote node support (yes, we
  84. use sysop here to remotely control stations, such as the router).
  85. Ohh yea... converse is one of the most popular IP modes around here,
  86. although we could use a multicast protocol :).
  87.  
  88. [I guess this called "put you code where your mouth is :) ]
  89.  
  90. [Not to say I am not working on any of this, just that I have to complete
  91. some other projects before I can work on my release of nos ... ]
  92.  
  93. milton
  94. --
  95. Milton Miller  KB5TKF  miltonm@austin.ibm.com
  96. I never speak for IBM.
  97.  
  98. ------------------------------
  99.  
  100. Date: Fri, 21 Jan 94 20:56:00 -0000
  101. From: mikebw@bilow.uu.ids.net (Mike Bilow)
  102. Subject: JNOS, TNOS, and other DOS'isms
  103. To: tcp-group@ucsd.edu
  104.  
  105. Cc: ssampson@sabea-oc.af.mil
  106.  
  107.  SS> I took an easier route.  I got rid of the DOS on top of 
  108.  SS> DOS code!  I don't see
  109.  SS> any reason for DIR RENAME and COPY inside NOS (as well 
  110.  SS> as a lot of other fluff)
  111.  SS> and I just deleted all that bo-jive.
  112.  
  113. A lot of the run-time functions that come with the compiler library do things
  114. that are incompatible with the NOS multitasking kernel and need to be replaced.
  115.  Some kinds of stack usage or memory allocation would be issues.  This also
  116. varies by version of the compiler.
  117.  
  118. The Borland compilers also have bugs in them.  For example, the "-Z" compiler
  119. switch is unstable with NOS in BC++ 3.0 and earlier, but works in BC++ 3.1.
  120.  
  121.  SS> By the way I use DesqView and a simple ALT-ALT tap gets 
  122.  SS> me a nice window that
  123.  SS> does all that CRAP that is flowing into NOS.  Windows 
  124.  SS> could do the same, but
  125.  SS> it needs a lot more memory I suspect.
  126.  
  127. Unix would probably work better, and it is becoming free.  This is a
  128. longstanding controversy in NOS development.  I don't ever remember a time when
  129. people were not arguing over it.  No one knows what the future is going to look
  130. like, but I personally hope it looks a lot more like Unix or OS/2 than Windows.
  131.  My own view is that it is up to the people who write the source code.
  132.  
  133.  SS> Those were very useful comments though, about the BC 
  134.  SS> limitations and changes Mike, thanks.
  135.  
  136. You're welcome.
  137.  
  138. -- Mike
  139.  
  140. ------------------------------
  141.  
  142. Date: Fri, 21 Jan 94 09:19:24 CST
  143. From: mfoster@amoco.com (Michael H. Foster)
  144. Subject: NO TNOS sample files
  145. To: tcp-group@ucsd.edu
  146.  
  147. Caveat: I have not found any sample autoexec or cfg files for TNOS at ucsd or lantz's
  148. location.  Anyone not familiar with creating such will be stuck for a while.
  149.  
  150. -Mike
  151.  
  152. ------------------------------
  153.  
  154. Date: Fri, 21 Jan 94 20:48:00 -0000
  155. From: mikebw@bilow.uu.ids.net (Mike Bilow)
  156. Subject: TNOS Missing Function - NOT
  157. To: tcp-group@ucsd.edu
  158.  
  159.  j> : Why are you referring to yourself in the third person?  Have you been 
  160.  j> : reading "The Education of Henry Adams" or something?   
  161.  
  162.  j> I think Brian Lantz is talking about Brian Kantor.
  163.  j> (And I agree with Brian!)
  164.  
  165. Yes, I realized that after I woke up this morning and reread my own message
  166. when it was sent to me by the list server.  I guess it was kind of a stupid
  167. mistake.  Fortunately, all of the intricate stuff about the Borland products
  168. was correct, but I suppose that is because I was paying attention when I was
  169. typing that part.
  170.  
  171. -- Mike
  172.  
  173. ------------------------------
  174.  
  175. Date: Sat, 22 Jan 1994 02:13:53 EST
  176. From: "Eric Todd Budinger" <budinger@titan.ds.gen.nj.us>
  177. To: tcp-group@ucsd.edu
  178.  
  179. help
  180. -- 
  181.  
  182. Eric T. Budinger           Dan's Domain 201-586-1223
  183. budinger@ds.gen.nj.us           Ham Central SysOp
  184. ericbud@ritz.mordor.com         1-201-398-4619 (voice)
  185. n2koj@w2xo.pa.usa.na            1-201-205-2134 (digital)
  186.  
  187. ------------------------------
  188.  
  189. End of TCP-Group Digest V94 #18
  190. ******************************
  191. ******************************
  192.